require "$DOCUMENT_ROOT/include/common.inc"; require "$DOCUMENT_ROOT/include/dbcommon.inc"; db_open_write(); # depth will change when new is removed. it is the # number of directorys before we get to the data $depth = 4; $gallery = "/reviews/books/travel/"; $photodir = "/photos/books/thumbnails"; #parse out book name $URI = explode ("/",$REQUEST_URI); $bASIN = $URI [$depth]; #if (!$bASIN) # header ("location: $gallery/index.html"); db_open_read(); $results = mysql($dbName,"SELECT * from books where ASIN=\"$bASIN\""); if (!mysql_num_rows($results) and $bASIN == ""){ ErrorOut("The URL is malformed. Please click on Feedback to report this error. Thanks!"); die; } $btitle = mysql_result($results,0,"title"); $bsubtitle = mysql_result($results,0,"subtitle"); $bauthor = mysql_result($results,0,"author"); $bASIN = mysql_result($results,0,"ASIN"); $breview = mysql_result($results,0,"review"); $bURL = mysql_result($results,0,"URL"); $brating = mysql_result($results,0,"rating"); $bimage = mysql_result($results,0,"image"); StartPage ("$btitle",""); if ($bimage) print "
\n"; print "$breview
\n"; print "\n"; if ($bURL) print "\n"; copyright("1999","2001"); EndPage(); ?>